home *** CD-ROM | disk | FTP | other *** search
- *** ./process.c Sat May 18 23:40:36 1996
- --- ../strace-3.1/./process.c Mon Jan 12 15:39:07 1998
- ***************
- *** 60,66 ****
- --- 60,68 ----
- { PR_GETSTACKSIZE, "PR_GETSTACKSIZE" },
- { PR_MAXPPROCS, "PR_MAXPPROCS" },
- { PR_UNBLKONEXEC, "PR_UNBLKONEXEC" },
- + #ifdef PR_ATOMICSIM
- { PR_ATOMICSIM, "PR_ATOMICSIM" },
- + #endif
- { PR_SETEXITSIG, "PR_SETEXITSIG" },
- { PR_RESIDENT, "PR_RESIDENT" },
- { PR_ATTACHADDR, "PR_ATTACHADDR" },
- *** ./resource.c Sat May 18 23:40:37 1996
- --- ../strace-3.1/./resource.c Mon Jan 12 15:39:12 1998
- ***************
- *** 77,83 ****
- --- 77,87 ----
-
- static char *
- sprintrlim(lim)
- + #ifdef sgi
- + rlim_t lim;
- + #else
- long lim;
- + #endif
- {
- static char buf[32];
-
- ***************
- *** 84,92 ****
- --- 88,104 ----
- if (lim == RLIM_INFINITY)
- sprintf(buf, "RLIM_INFINITY");
- else if (lim > 1024 && lim%1024 == 0)
- + #ifdef sgi
- + sprintf(buf, "%llu*1024", lim/1024);
- + #else
- sprintf(buf, "%ld*1024", lim/1024);
- + #endif
- else
- + #ifdef sgi
- + sprintf(buf, "%llu", lim);
- + #else
- sprintf(buf, "%ld", lim);
- + #endif
- return buf;
- }
-
- *** ./configure.in Mon May 20 20:20:55 1996
- --- ../strace-3.1/./configure.in Mon Jan 12 15:38:56 1998
- ***************
- *** 16,22 ****
- sysv4*)
- opsys=svr4
- ;;
- ! irix5*)
- opsys=svr4
- ;;
- *)
- --- 16,22 ----
- sysv4*)
- opsys=svr4
- ;;
- ! irix*)
- opsys=svr4
- ;;
- *)
- *** ./system.c Sat May 18 23:40:37 1996
- --- ../strace-3.1/./system.c Mon Jan 12 15:39:22 1998
- ***************
- *** 226,232 ****
- --- 226,237 ----
- { NFSMNT_TIMEO, "NFSMNT_TIMEO" },
- { NFSMNT_RETRANS, "NFSMNT_RETRANS" },
- { NFSMNT_HOSTNAME, "NFSMNT_HOSTNAME" },
- + #ifdef NFSMNT_INT
- { NFSMNT_INT, "NFSMNT_INT" },
- + #endif
- + #ifdef NFSMNT_NOINT
- + { NFSMNT_NOINT, "NFSMNT_NOINT" },
- + #endif
- { NFSMNT_NOAC, "NFSMNT_NOAC" },
- { NFSMNT_ACREGMIN, "NFSMNT_ACREGMIN" },
- { NFSMNT_ACREGMAX, "NFSMNT_ACREGMAX" },
- ***************
- *** 625,631 ****
- #ifdef MIPS
-
- #include <sys/syssgi.h>
- !
- static struct xlat syssgi_options[] = {
- { SGI_SYSID, "SGI_SYSID" },
- { SGI_RDUBLK, "SGI_RDUBLK" },
- --- 630,638 ----
- #ifdef MIPS
-
- #include <sys/syssgi.h>
- ! #ifndef SGI_RDUBLK
- ! #define SGI_RDUBLK 2 /* In IRIX5.*, missing in IRIX6 series so... */
- ! #endif
- static struct xlat syssgi_options[] = {
- { SGI_SYSID, "SGI_SYSID" },
- { SGI_RDUBLK, "SGI_RDUBLK" },
- ***************
- *** 698,703 ****
- --- 705,713 ----
- { SGI_TOSSTSAVE, "SGI_TOSSTSAVE" },
- { SGI_FDHI, "SGI_FDHI" },
- { SGI_MINRSS, "SGI_MINRSS" },
- + #ifdef SGI_USE_FP_BCOPY
- + { SGI_USE_FP_BCOPY, "SGI_USE_FP_BCOPY" },
- + #endif
- { 0, NULL },
- };
-
- ***************
- *** 749,755 ****
- --- 759,770 ----
- { NFSMNT_TIMEO, "NFSMNT_TIMEO" },
- { NFSMNT_RETRANS, "NFSMNT_RETRANS" },
- { NFSMNT_HOSTNAME, "NFSMNT_HOSTNAME" },
- + #ifdef NFSMNT_INT
- { NFSMNT_INT, "NFSMNT_INT" },
- + #endif
- + #ifdef NFSMNT_NOINT
- + { NFSMNT_NOINT, "NFSMNT_NOINT" },
- + #endif
- { NFSMNT_NOAC, "NFSMNT_NOAC" },
- { NFSMNT_ACREGMIN, "NFSMNT_ACREGMIN" },
- { NFSMNT_ACREGMAX, "NFSMNT_ACREGMAX" },
- *** ./mem.c Sat May 18 23:40:36 1996
- --- ../strace-3.1/./mem.c Mon Jan 12 15:39:01 1998
- ***************
- *** 76,81 ****
- --- 76,99 ----
- #ifdef MAP_RENAME
- { MAP_RENAME, "MAP_RENAME" },
- #endif
- + #ifdef MAP_AUTOGROW
- + { MAP_AUTOGROW,"MAP_AUTOGROW" },
- + #endif
- + #ifdef MAP_LOCAL
- + { MAP_LOCAL, "MAP_LOCAL" },
- + #endif
- + #ifdef MAP_AUTORESRV
- + { MAP_AUTORESRV,"MAP_AUTORESRV" },
- + #endif
- + #ifdef MAP_TEXT
- + { MAP_TEXT, "MAP_TEXT" },
- + #endif
- + #ifdef MAP_BRK
- + { MAP_BRK, "MAP_BRK" },
- + #endif
- + #ifdef MAP_PRIMARY
- + { MAP_PRIMARY, "MAP_PRIMARY" },
- + #endif
- #ifdef MAP_NORESERVE
- { MAP_NORESERVE,"MAP_NORESERVE" },
- #endif
- *** ./signal.c Wed May 22 22:12:47 1996
- --- ../strace-3.1/./signal.c Mon Jan 12 15:39:18 1998
- ***************
- *** 181,193 ****
- strcpy(outstr, s);
- s = outstr + strlen(outstr);
- nsigs = 0;
- ! for (i = 1; i <= NSIG; i++) {
- if (sigismember(&mask, i) == 1)
- nsigs++;
- }
- ! if (nsigs >= NSIG * 2 / 3) {
- *s++ = '~';
- ! for (i = 1; i <= NSIG; i++) {
- switch (sigismember(&mask, i)) {
- case 1:
- sigdelset(&mask, i);
- --- 181,193 ----
- strcpy(outstr, s);
- s = outstr + strlen(outstr);
- nsigs = 0;
- ! for (i = 1; i <= (NSIG-1); i++) {
- if (sigismember(&mask, i) == 1)
- nsigs++;
- }
- ! if (nsigs >= (NSIG-1) * 2 / 3) {
- *s++ = '~';
- ! for (i = 1; i <= (NSIG-1); i++) {
- switch (sigismember(&mask, i)) {
- case 1:
- sigdelset(&mask, i);
- ***************
- *** 200,206 ****
- }
- format = "%s";
- *s++ = '[';
- ! for (i = 1; i <= NSIG; i++) {
- if (sigismember(&mask, i) == 1) {
- sprintf(s, format, signalent[i] + 3); s += strlen(s);
- format = " %s";
- --- 200,206 ----
- }
- format = "%s";
- *s++ = '[';
- ! for (i = 1; i <= (NSIG-1); i++) {
- if (sigismember(&mask, i) == 1) {
- sprintf(s, format, signalent[i] + 3); s += strlen(s);
- format = " %s";
- ***************
- *** 599,609 ****
- #else /* !M68K */
- #ifdef ALPHA
- long fp;
- - # if __GNU_LIBRARY__ < 5
- struct sigcontext_struct sc;
- - # else
- - struct sigcontext sc;
- - # endif
-
- if (entering(tcp)) {
- tcp->u_arg[0] = 0;
- --- 599,605 ----
- *** ./aclocal.m4 Wed May 22 22:12:42 1996
- --- ../strace-3.1/./aclocal.m4 Mon Jan 12 15:38:39 1998
- ***************
- *** 164,170 ****
- AC_CACHE_VAL(ac_cv_decl_sys_errlist,
- [AC_TRY_COMPILE([#include <sys/types.h>
- #include <errno.h>
- - #include <stdio.h>
- /* Somebody might declare sys_errlist in unistd.h. */
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- --- 164,169 ----
- *** ./configure Wed May 22 22:12:44 1996
- --- ../strace-3.1/./configure Mon Jan 12 15:40:17 1998
- ***************
- *** 572,578 ****
- sysv4*)
- opsys=svr4
- ;;
- ! irix5*)
- opsys=svr4
- ;;
- *)
- --- 572,578 ----
- sysv4*)
- opsys=svr4
- ;;
- ! irix*)
- opsys=svr4
- ;;
- *)
- ***************
- *** 2104,2110 ****
- #include "confdefs.h"
- #include <sys/types.h>
- #include <errno.h>
- - #include <stdio.h>
- /* Somebody might declare sys_errlist in unistd.h. */
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- --- 2104,2109 ----
- ***************
- *** 2114,2120 ****
- char *msg = *(sys_errlist + 1);
- ; return 0; }
- EOF
- ! if { (eval echo configure:2118: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl_sys_errlist=yes
- else
- --- 2113,2119 ----
- char *msg = *(sys_errlist + 1);
- ; return 0; }
- EOF
- ! if { (eval echo configure:2117: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl_sys_errlist=yes
- else
- ***************
- *** 2137,2143 ****
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2141 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- --- 2136,2142 ----
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2140 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- ***************
- *** 2150,2156 ****
- char *msg = *(sys_siglist + 1);
- ; return 0; }
- EOF
- ! if { (eval echo configure:2154: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl_sys_siglist=yes
- else
- --- 2149,2155 ----
- char *msg = *(sys_siglist + 1);
- ; return 0; }
- EOF
- ! if { (eval echo configure:2153: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl_sys_siglist=yes
- else
- ***************
- *** 2174,2180 ****
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2178 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- --- 2173,2179 ----
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
- ! #line 2177 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
- ***************
- *** 2187,2193 ****
- char *msg = *(_sys_siglist + 1);
- ; return 0; }
- EOF
- ! if { (eval echo configure:2191: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl__sys_siglist=yes
- else
- --- 2186,2192 ----
- char *msg = *(_sys_siglist + 1);
- ; return 0; }
- EOF
- ! if { (eval echo configure:2190: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_decl__sys_siglist=yes
- else
-